home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global balloonSprite, grollerList
- set rollTest to 0
- set vThisFrame to the frameLabel
- set vFrameCheck to getaProp(grollerList, vThisFrame)
- if voidp(vFrameCheck) then
- alert("Rollovers not specified for frame.")
- pause()
- exit
- end if
- set rollList to getProp(getProp(grollerList, vThisFrame), #sprites)
- repeat with X in rollList
- if the mouseCast = the memberNum of sprite X then
- set rollTest to 1
- set hotSprite to X
- set thisName to the name of member the member of sprite hotSprite
- exit repeat
- end if
- end repeat
- if rollTest then
- showBalloon(thisName)
- else
- set the loc of sprite balloonSprite to point(-4444, -4444)
- end if
- go(the frame)
- end
-